home *** CD-ROM | disk | FTP | other *** search
- /* The BGI bar(...) function works in strange manner. If you use
- pattern that differs from SOLID_FILL, the second color is
- BLACK. To correct this situation we use overloaded bar(...)
- function.
- */
-
- #ifndef __KH_BGI_H_
- #define __KH_BGI_H_
-
- #include "geom.h"
- #include "simple.h"
-
- extern void bar(int left, int top, int right, int bottom,
- int col, int bak, uchar* pattern);
- extern void bar(rect r, int col, int bak, uchar* pattern);
-
- #endif __KH_BGI_H_